Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | /** global: grecaptcha */ |
||
15 | function reCaptchaOnloadCallback() { |
||
16 | var reCaptcha = document.querySelector('.g-recaptcha'); |
||
17 | |||
18 | if (reCaptcha.dataset.size === 'invisible') { |
||
19 | reCaptchaForm().addEventListener('submit', reCaptchaFormOnSubmit); |
||
20 | } |
||
21 | |||
22 | grecaptcha.render(reCaptcha, reCaptcha.dataset); |
||
23 | } |
||
24 | |||
45 |